
  /* CSS Boiler Plate Start*/

  *{
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
    text-decoration: none;
    scroll-behavior: smooth;
    
}
/* CSS Boiler Plate End */


  /* Defined Constant (Root) Start   */
    
  :root {
    --text-color: black;
    --secondary-color: #5151ef;
    --light-bg-color:rgb(246,246,246);
    --dark-bg-color:#0f0f28;
    --main-color: white;
    --sub-text-color: #808080;
    --pane-padding: 32px 100px;
    --primary-font-family: 'Poppins', sans-serif;
    --primary-font-weight: 450; 
    --primary-font-style: normal;
    --primary-font-size: 22px;
    
    
    }
   /* Defined Constant (Root) End */



/* Main bar fixed at bottom */
.trusted-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--light-bg-color);
  display: flex;
  align-items: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10001;
  height: 60px;
  overflow: hidden;
}

/* Left label */
.label {
  background:var(--secondary-color) ;
  color: white;
  padding: 0 16px;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: var(--primary-font-family);
  font-style: var(--primary-font-style);
}

/* Scrolling area */
.logo-slider {
  overflow: hidden;
  flex: 1;
}

/* Scrolling track */
.logo-track {
  display: flex;
  gap: 5vw;
  width: max-content;
  animation: scroll 30s linear infinite;
}

/* Logo styling */
.logo-track img {
  height: 8vw;
  max-height: 40px;
  flex-shrink: 0;
  
}

.partnerlogo{
    filter: grayscale(100%);
    transition: all 0.3s ease;

}

.partnerlogo:hover{
    filter: grayscale(0%);
}




/* Responsive adjustment for larger screens */
@media (min-width: 768px) {
  .label {
    font-size: 16px;
    padding: 0 24px;
  }

  .logo-track img {
    height: 40px;
  }

  .logo-track {
    gap: 40px;
  }
}

 /* Responsive Start  */
  @media (max-width:617px) {
    
      .label {
    font-size: 12px;
    padding: 0 20px;
  }

  .logo-track img {
    height: 30px;
  }

  .logo-track {
    gap: 30px;
  }


  .trusted-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--light-bg-color);
  display: flex;
  align-items: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10001;
  height: 40px;
  overflow: hidden;
}
  }




  /* Responsive End  */
/* Scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
